home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Resources
/
Chat & Communication
/
Digsby build 37
/
digsby_setup.exe
/
lib
/
pyxmpp
/
all.pyo
(
.txt
)
< prev
next >
Wrap
Python Compiled Bytecode
|
2008-10-13
|
1KB
|
23 lines
# Source Generated with Decompyle++
# File: in.pyo (Python 2.5)
__revision__ = '$Id: __init__.py 477 2004-12-29 13:25:42Z jajcus $'
__docformat__ = 'restructuredtext en'
import pyxmpp
from pyxmpp.stream import Stream
from pyxmpp.streambase import StreamError, FatalStreamError, StreamParseError
from pyxmpp.streamtls import StreamEncryptionRequired, tls_available, TLSSettings
from pyxmpp.clientstream import ClientStream, ClientStreamError
from pyxmpp.client import Client, ClientError
from pyxmpp.iq import Iq
from pyxmpp.presence import Presence
from pyxmpp.message import Message
from pyxmpp.jid import JID, JIDError
from pyxmpp.roster import Roster, RosterItem
from pyxmpp.exceptions import *
for name in dir():
if not name.startswith('_') and name != 'pyxmpp':
setattr(pyxmpp, name, globals()[name])
continue